runtime.p.numTimers (field)

10 uses

	runtime (current package)
		proc.go#L3681: 		if pp != getg().m.p.ptr() || int(pp.deletedTimers.Load()) <= int(pp.numTimers.Load()/4) {
		proc.go#L5118: 		pp.numTimers.Store(0)
		proc.go#L6071: 	if pp.numTimers.Load() > 0 {
		proc.go#L6079: 	if pp.numTimers.Load() == 0 {
		runtime2.go#L739: 	numTimers atomic.Uint32
		time.go#L307: 	pp.numTimers.Add(1)
		time.go#L401: 	n := pp.numTimers.Add(-1)
		time.go#L429: 	n := pp.numTimers.Add(-1)
		time.go#L969: 	pp.numTimers.Add(-cdel)
		time.go#L997: 	if numTimers := int(pp.numTimers.Load()); len(pp.timers) != numTimers {